home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / sys / cbm / 1125 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  1.4 KB

  1. Path: sdcc12.ucsd.edu!sdcc13!ckaiser
  2. From: ckaiser@sdcc13.ucsd.edu (Po-Ching Lives!)
  3. Newsgroups: comp.sys.cbm
  4. Subject: Re: Some poke commands I forgot..
  5. Date: 23 Jan 1996 16:00:27 GMT
  6. Organization: University of California, San Diego
  7. Message-ID: <4e30mr$19q@sdcc12.ucsd.edu>
  8. References: <DLJICv.3r4.0.sheppard@torfree.net> <DLLr73.FF8@novice.uwaterloo.ca>
  9. NNTP-Posting-Host: sdcc13.ucsd.edu
  10.  
  11. In <DLLr73.FF8@novice.uwaterloo.ca> dfevans@bbcr.uwaterloo.ca (David Evans) writes:
  12.  
  13. >  Bit 7 of 648 ($0288) controls key repeat.  poke 648,peek(648)or128 will get
  14. >this together.
  15.  
  16. Noooooo! Location 648 controls the page that the Kernal screen
  17. editor writes to. Thus, the POKE you just did would start sending
  18. screen data to $8400 and mean that even RUN-STOP/RESTORE would not
  19. recover (you have to blindly type POKE 648,4 to return screen to
  20. $0400.)
  21.  
  22. The location you're thinking of is 650 ($028A):
  23.  
  24.         650,128        all keys repeat
  25.         650,0        standard keyboard (only CRSR/SPACE repeat)
  26.  
  27. Various other configurations exist.
  28.  
  29. >  Location 56325 ($DC05) handles one half (upper byte, I think) of the CIA
  30. >timer that produces the IRQs, and thus the cursor.  Muck with it for lots of
  31. >nifty effects (including crashing the machine.)
  32.  
  33. In case you chop it too badly, default is 55. This location won't
  34. actually crash the machine per se, but it could make typing hell.
  35.  
  36. Cameron Kaiser
  37. ckaiser@ucsd.edu
  38. visit the CWI home page at http://www.armory.com/~spectre/cwi.html
  39.  
  40.